home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / Better AD security / Source / ES Handler.h < prev    next >
Text File  |  1996-06-21  |  1KB  |  42 lines

  1. /*    NAME:
  2.         ES Handler.h
  3.  
  4.     WRITTEN BY:
  5.         Dair Grant
  6.                 
  7.     DESCRIPTION:
  8.         Header file for ES Handler.c
  9.  
  10.     ___________________________________________________________________________
  11. */
  12. #ifndef __ES_HANDLER__
  13. #define __ES_HANDLER__
  14. //=============================================================================
  15. //        Defines                                                                 
  16. //-----------------------------------------------------------------------------
  17. // Notification Manager error strings
  18. #define kErrorStrings                128                            // Resource ID of 'STR#' resource
  19. #define kNeedSystemSeven            1                            // Need System 7 index
  20. #define kUnknownError                2                            // Unknown error index
  21.  
  22.  
  23.  
  24.  
  25. // Enabled icons
  26. #define kMyNumEnabledIcons            1                            // Number of enabled icons
  27. #define kEnabledAnimDelay            0                            // Delay for enabled icon(s)
  28. #define kMyFirstEnabledIcon            128                            // First enabled icon
  29.  
  30.  
  31.  
  32.  
  33. // Disabled icons
  34. #define kMyNumDisabledIcons            1                            // Number of disabled icons
  35. #define kDisabledAnimDelay            0                            // Delay for disabled icon(s)
  36. #define kMyFirstDisabledIcon         256                            // First disabled icon
  37.  
  38.  
  39.  
  40.  
  41. #endif
  42.